home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Browsers, Managers & Extensions / Mozilla Weave 0.2.7 / latest-weave.xpi / chrome / sync.jar / content / preferences.css < prev    next >
Cascading Style Sheet File  |  2008-07-08  |  1KB  |  30 lines

  1. #changePasswordStatus[status="idle"] > #changePasswordIcon {
  2.   list-style-image: url("chrome://weave/skin/sync-throbber-16x16.png");
  3. }
  4.  
  5. #changePasswordStatus[status="active"] > #changePasswordIcon {
  6.   list-style-image: url("chrome://weave/skin/sync-throbber-16x16-active.apng");
  7. }
  8.  
  9. #changePasswordStatus[status="error"] > #changePasswordIcon {
  10.   list-style-image: url("chrome://weave/skin/sync-throbber-16x16-error.png");
  11. }
  12.  
  13. /* FIXME: make this a green checkmark instead of the current blue info badge. */
  14. #changePasswordStatus[status="success"] > #changePasswordIcon {
  15.   list-style-image: url("chrome://global/skin/icons/information-16.png");
  16. }
  17.  
  18. /**
  19.  * The newPassword and newPasswordAgain textboxes need to be both type="timed"
  20.  * and type="password", but textbox elements aren't designed to accept two
  21.  * values for "type". Nevertheless, we can make it work by setting the attribute
  22.  * to one of the types and manually binding the elements to the other type here.
  23.  * We bind them to "timed" here so we can toggle "password" via the attribute
  24.  * as the user checks/unchecks the "Show Passwords" checkbox.
  25.  */
  26. #newPassword, #newPasswordAgain {
  27.   -moz-binding:
  28.     url("chrome://global/content/bindings/textbox.xml#timed-textbox");
  29. }
  30.